home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "MainModule"
- Option Explicit
-
- '------------------------------------------------------
- '<Purpose> singular program entry point
- '------------------------------------------------------
- Public Sub Main()
- Status.MyCaption = "Internet Mail Status"
- Status.Show
-
- ControlPanel.Show
- End Sub
-
- '------------------------------------------------------
- '<Purpose> singular program exit point
- '------------------------------------------------------
- Public Sub ExitProc()
- CleanupForms
-
- 'don't end if you're a server
- If (App.StartMode = vbSModeStandalone) Then
- End
- End If
- End Sub
-
- '------------------------------------------------------
- '<Purpose> destroy all form objects, important in
- ' OLE servers
- '------------------------------------------------------
- Private Sub CleanupForms()
- Unload AboutBox
- Unload Address
- Unload Addresses
- Unload ControlPanel
- Unload Properties
- Unload Receive
- Unload Send
- Unload Status
-
- Set AboutBox = Nothing
- Set Address = Nothing
- Set Addresses = Nothing
- Set ControlPanel = Nothing
- Set Properties = Nothing
- Set Receive = Nothing
- Set Send = Nothing
- Set Status = Nothing
- End Sub
-
-
-